home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / gle33b_1.zip / GLE4.ZIP / FOUR.GLE < prev    next >
Text File  |  1990-11-22  |  1KB  |  65 lines

  1. size 26 18 box  ! This is FOUR.GLE,  four graphs in a square 
  2. set hei 0.57 just cent
  3. amove  0 0 
  4. begin graph
  5.     size 13 9 
  6.     title "Tree Spacing 4.5 x 2.0 m"
  7.     xtitle "fruit size grade"
  8.     ytitle "tonnes/ha"
  9.     xaxis  min -0.5 max 5.5 dticks 1
  10.     yaxis  min 0 max 30 dsubticks 10
  11.     xnames "M" "T" "W" "T" "F" "S" 
  12.     noborder
  13.     bar d1 width 1.0 fill grey10
  14.     data test.dat
  15. end graph
  16.  
  17. amove  0 9
  18. begin graph
  19.     size 13 9 
  20.     title "Tree Spacing 4.5 x 2.0 m"
  21.     xtitle "fruit size grade"
  22.     ytitle "tonnes/ha"
  23.     xaxis  min -0.5 max 5.5 dticks 1
  24.     yaxis  min 0 max 30 dsubticks 10
  25.     xnames "M" "T" "W" "T" "F" "S" 
  26.     noborder
  27.     bar d1 width 1.0 fill shade5
  28.     data test.dat
  29. end graph
  30.  
  31. amove  13 9
  32. begin graph
  33.     size 13 9
  34.     title "Tree Spacing 4.5 x 2.0 m"
  35.     xtitle "fruit size grade"
  36.     ytitle "tonnes/ha"
  37.     xaxis  min -0.5 max 5.5 dticks 1
  38.     yaxis  min 0 max 30 dsubticks 10
  39.     xnames "M" "T" "W" "T" "F" "S" 
  40.     noborder
  41.     data test.dat
  42.     bar d1 width .8 fill shade
  43.     let d3 = d1+5+.5*d1
  44.     bar d3 from d1 width .8 fill grey30 
  45. end graph
  46.  
  47. amove  13 0
  48. begin graph
  49.     size 13 9
  50.     title "Tree Spacing 4.5 x 2.0 m"
  51.     xtitle "fruit size grade"
  52.     ytitle "tonnes/ha"
  53.     xaxis  min -0.5 max 5.5 dticks 1
  54.     yaxis  min 0 max 30 dsubticks 10
  55.     xnames "M" "T" "W" "T" "F" "S" 
  56.     noborder
  57.     data test.dat
  58.     bar d1,d2  fill grid1,grid3 width .3 dist .3 
  59. end graph
  60.  
  61.  
  62. set hei .5 just left
  63. amove .1 .2
  64. text four.gle
  65.